home *** CD-ROM | disk | FTP | other *** search
/ HTBasic 9.3 / HTBasic 9.3.iso / FLOPPY / SICL / DISK2 / HPIOLIBS.2 / sicl32 / c / samples / scope / scope.rc < prev    next >
Encoding:
Text File  |  1999-01-29  |  408 b   |  21 lines

  1. #include <windows.h>
  2. #include "scope.h"
  3.  
  4. scopeicon ICON scope.ico
  5.  
  6. scopemenu MENU
  7. {
  8.     POPUP "&File"
  9.     {
  10.          MENUITEM "&Exit",       SCOPE_EXIT
  11.     }
  12.  
  13.     POPUP "&Action"
  14.     {
  15.          MENUITEM "&get_voltage",  SCOPE_READ_VOLT
  16.          MENUITEM "&perform_meas", SCOPE_GET_DATA
  17.          MENUITEM "&show_settings",  SCOPE_HEADER
  18.          MENUITEM "&print_disp",   SCOPE_PRINT
  19.     }
  20. }
  21.